+Sat Jan 31 22:41:57 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Correct
+ the documentation for new_order. (#124790, Tim-Philipp Müller)
+
+Sat Jan 31 22:38:07 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
+ Reset use_resized_width when setting fixed_width. (#108612,
+ Felipe Heidrich)
+
Sat Jan 31 16:27:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkmain.c (gtk_key_snooper_remove): Don't leak the
+Sat Jan 31 22:41:57 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Correct
+ the documentation for new_order. (#124790, Tim-Philipp Müller)
+
+Sat Jan 31 22:38:07 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
+ Reset use_resized_width when setting fixed_width. (#108612,
+ Felipe Heidrich)
+
Sat Jan 31 16:27:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkmain.c (gtk_key_snooper_remove): Don't leak the
+Sat Jan 31 22:41:57 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Correct
+ the documentation for new_order. (#124790, Tim-Philipp Müller)
+
+Sat Jan 31 22:38:07 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
+ Reset use_resized_width when setting fixed_width. (#108612,
+ Felipe Heidrich)
+
Sat Jan 31 16:27:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkmain.c (gtk_key_snooper_remove): Don't leak the
+Sat Jan 31 22:41:57 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Correct
+ the documentation for new_order. (#124790, Tim-Philipp Müller)
+
+Sat Jan 31 22:38:07 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
+ Reset use_resized_width when setting fixed_width. (#108612,
+ Felipe Heidrich)
+
Sat Jan 31 16:27:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkmain.c (gtk_key_snooper_remove): Don't leak the
+Sat Jan 31 22:41:57 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Correct
+ the documentation for new_order. (#124790, Tim-Philipp Müller)
+
+Sat Jan 31 22:38:07 2004 Matthias Clasen <maclas@gmx.de>
+
+ * gtk/gtktreeviewcolumn.c (gtk_tree_view_column_set_fixed_width):
+ Reset use_resized_width when setting fixed_width. (#108612,
+ Felipe Heidrich)
+
Sat Jan 31 16:27:44 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtkmain.c (gtk_key_snooper_remove): Don't leak the
* @tree_model: A #GtkTreeModel
* @path: A #GtkTreePath pointing to the tree node whose children have been reordered
* @iter: A valid #GtkTreeIter pointing to the node whose children have been reordered
- * @new_order: an array of integers containing the new indices of the children,
- * i.e. the former child <literal>n</literal> is now at position
- * @new_order<literal>[n]</literal>.
+ * @new_order: an array of integers mapping the current position of each child
+ * to its old position before the re-ordering,
+ * i.e. @new_order<literal>[newpos] = oldpos</literal>.
*
* Emits the "rows_reordered" signal on @tree_model. This should be called by
* models when their rows have been reordered.
* @resizable: %TRUE, if the column can be resized
*
* If @resizable is %TRUE, then the user can explicitly resize the column by
- * grabbing the outer edge of the column button. If resizable is TRUE and
+ * grabbing the outer edge of the column button. If resizable is %TRUE and
* sizing mode of the column is #GTK_TREE_VIEW_COLUMN_AUTOSIZE, then the sizing
* mode is changed to #GTK_TREE_VIEW_COLUMN_GROW_ONLY.
**/
g_return_if_fail (fixed_width > 0);
tree_column->fixed_width = fixed_width;
+ tree_column->use_resized_width = FALSE;
if (tree_column->tree_view &&
GTK_WIDGET_REALIZED (tree_column->tree_view) &&